home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / 0562.ZIP / SUBPATH.BAT < prev   
DOS Batch File  |  1987-03-29  |  1KB  |  37 lines

  1. echo off
  2. REM The next 2 lines form a first-time switch that simulates an exit from this
  3. REM .bat routine (to SUBPAT, which is created in the basic program) and
  4. REM then returns to the statement labeled :Endit, where files & stuff
  5. REM get cleaned up.
  6. if XX==%PATX% goto endit
  7. set PATX=XX
  8. if "%1==" goto help
  9. goto next
  10. :help
  11. cls
  12. echo     SUBPATH will search for the requested pathname in the current
  13. echo     path, and, if found, delete it.   
  14. echo     It is a good practice to issue a PATH command first, to 
  15. echo     be certain of the exact form of the pathname you wish to delete.
  16. echo     SUBPATH will delete only an exact match as it appears between
  17. echo     semi-colons in the current PATH.
  18. echo  EXAMPLE:
  19. echo     To delete the pathname  C:\UTIL 
  20. echo                      SUBPATH  C:\UTIL
  21. goto out
  22. :next
  23. path >subpath.dat
  24. SET PAT=%1
  25. REM  Change the next line to include the full path to the SUBPATH.BAS
  26. REM  file if you wish to execute this routine from any other directory.
  27. REM        E.g.,   change it to    BASICA C:\UTILITY\SUBPATH.BAS
  28. REM  Alternatively, if you compile SUBPATH.BAS
  29. basica subpath.bas
  30. SET PAT=
  31. subpat
  32. :ENDIT
  33. SET PATX=
  34. ERASE SUBPAT.BAT
  35. :out
  36. 
  37.